home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2000-08-07 | 1.5 KB | 52 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Program Options\Built in Windows Apps\Windows Help"
- "NAME"="WinHelp CTRL Keys"
- "VERSION"="1.43"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Activate CTRL+SHIFT moving through helpfiles"
- "DESCRIPTION 1"="Activating this option allows you to move through every help file by pressing CTRL+SHIFT+CURSOR LEFT or CTRL+SHIFT+CURSOR RIGHT."
- "DESCRIPTION 2"="NOTE: This option only applies for WinHelp not the new HTMLHelp (*.CHM)."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
- "COMMENT 2"=" "
- "COMMENT 3"="from "Registry Dompteur" RegDom (c) 1996..98 by Horst Schmid, Horst_Schmid@compuserve.com"
- "COMMENT 4"="Thanks to CptSiskoX for his help!"
-
-
- sV1="HKEY_CURRENT_USER\Software\Microsoft\Windows Help\SeqTopicKeys"
-
- Sub Plugin_Initialize
- i=IniReadValue("WIN.INI","Windows Help","SeqTopicKeys")
- If IsEmpty(i) then
- i=RegReadValue(sV1)
- end if
-
- if i=1 then
- SetUIElement 1,true
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","1")
- Call RegWriteValue(sV1,"1",1)
- else
- Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","0")
- Call RegWriteValue(sV1,"0",1)
- end if
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-